Gets and sets the item at the specified index from within the collection.
public virtual this[
int
]; {get; set;}
'Declaration
Public Overridable Default Property Item( _
ByVal As Integer _
) As
'Usage
Dim instance As RasterCollection(Of T)
Dim index As Integer
Dim value As
instance.Item(index) = value
value = instance.Item(index)
public virtual this[
int index
]; {get; set;}
this[
index
]
get_Item();
set_Item(value);
Object.defineProperty('Item');
public:
virtual property default [int] {
get(int );
void set (int , value);
}
Parameters
- index
- The zero-based index of the element to get or set.
Property Value
The item at the specified index.